GetEnumerator Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Enumerate all the keys in the dictionary, and for each key, the collection of values for that key.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public override IEnumerator<KeyValuePair<TKey, ICollection<TValue>>> GetEnumerator()
Visual Basic (Declaration)
Public Overrides Function GetEnumerator As IEnumerator(Of KeyValuePair(Of TKey, ICollection(Of TValue)))
Visual C++
public:
virtual IEnumerator<KeyValuePair<TKey, ICollection<TValue>^>>^ GetEnumerator () override

Return Value

An enumerator to enumerate all the key, ICollection<value> pairs in the dictionary.

See Also